Conversation
Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
Preview links (active after the
|
|
|
||
| ## Overview | ||
|
|
||
| This guide walks through connecting AWS Redshift to Datadog to enable warehouse-native experiment analysis in four steps: connecting AWS to Datadog, creating necessary resources in AWS, granting permissions to the Datadog service user, and configuring experiment-specific settings in Datadog. |
There was a problem hiding this comment.
The Snowflake PR (#35422 (review)) lists these in bullets. Do we prefer paragraph or bullet?
|
|
||
| ### Create a Service User for Datadog Experiments | ||
|
|
||
| 1. Connect to your Redshift cluster with a user that has superuser or admin privileges. |
There was a problem hiding this comment.
We should probably say "Connect to your Redshift database" here. All of the commands below assume you are in your desired database.
Also, in QA I noticed that I couldn't select from one database into another. I think that is an acceptable limitation for now (possibly controlled by them.. I don't think our redshift cluster supported cross-db queries) but this language would imply that you are dealing with one database.
|
|
||
| ### Create an S3 Bucket | ||
|
|
||
| Create an S3 bucket for importing exposure events into your warehouse. The bucket must start with `"datadog-experimentation-"`, e.g. `datadog-experimentation-[AWS account ID]`. Default settings can be used. |
There was a problem hiding this comment.
Like the BQ PR you could link to S3 docs here.
| "Version": "2012-10-17", | ||
| "Statement": [ | ||
| { | ||
| "Sid": "GetClusterCreds", |
There was a problem hiding this comment.
Rename to "RedshiftGetClusterCredentials" or remove (Sid is optional)
| "Resource": "*" | ||
| }, | ||
| { | ||
| "Sid": "ListTheBucket", |
There was a problem hiding this comment.
Rename to "ListExperimentationBucket" or remove (Sid is optional)
| "Resource": "[S3 bucket ARN]" | ||
| }, | ||
| { | ||
| "Sid": "ObjectRW", |
There was a problem hiding this comment.
Rename to "ReadWriteExperimentationBucket" or remove (Sid is optional)
What does this PR do? What is the motivation?
Fixes DOCS-13741
Adds a new guide for connecting Amazon Redshift to Datadog Experiments for warehouse-native experiment analysis. The guide covers IAM permissions, database setup, Datadog configuration, optional log collection, and verification steps.
Merge instructions
Merge readiness:
Additional notes
Page is marked
private: truepending review and GA.